home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2006 June / PCpro_2006_06.ISO / files / freeware / openvip.exe / {app} / ATransitionSettingsDialog.py < prev    next >
Encoding:
Python Source  |  2003-06-03  |  984 b   |  34 lines

  1. #
  2. # This file is part of OpenVIP (http://openvip.sourceforge.net)
  3. #
  4. # Copyright (C) 2002-2003
  5. # Michal Dvorak, Jiri Sedlar, Antonin Slavik, Vaclav Slavik, Jozef Smizansky
  6. #
  7. # This program is licensed under GNU General Public License version 2;
  8. # see file COPYING in the top level directory for details.
  9. #
  10. # $Id: ATransitionSettingsDialog.py,v 1.2 2003/06/03 21:01:13 vaclavslavik Exp $
  11. #
  12.  
  13. from wxPython.wx import *
  14. import globals, logging, render, model, worker, openvip, copy
  15. from SettingsDialog import SettingsDialog, PREVIEW_SIZE
  16.  
  17. class ATransitionSettingsDialog(SettingsDialog):
  18.     """Settings dialog for audio transitions."""
  19.  
  20.     def __init__(self, *args, **kwds):
  21.         SettingsDialog.__init__(self, *args, **kwds)
  22.         self.SetPreview(False)
  23.     
  24.     def SetObject(self, model, object):
  25.         self.model = model
  26.         self.object = object
  27.     
  28.     def GetClass(self):
  29.         return 'ATransition'
  30.  
  31.     def GetTitle(self):
  32.         return 'Audio Transition Settings'
  33.  
  34.